Loading TOC...

MarkLogic 12 Product Documentation
GET /manage/v2/clusters/{id|name}/dynamic-host-token

Summary

This resource searches dynamic host tokens.

URL Parameters
format The format of the returned data. Can be either html, json, or xml (default). This value overrides the Accept header if both are present.
comment-match-pattern The regex match pattern in the comment section of the token.
match-flags The regex flag.
token-issue-start-date Filter (discard) dynamic host tokens issued before token-issue-start-date.
token-issue-end-date Filter (discard) dynamic host tokens issued after token-issue-end-date.
decode When set to true, the dynamic host token's are decoded and included in the response.
Request Headers
Accept The expected MIME type of the request body. If the format? parameter is present, it takes precedence over the Accept header.
Response Headers
Content-type The MIME type of the data in the response body. Depending upon the value of the format parameter or Accept header, one of application/xml, application/json, or text/html.

Response

Upon success, MarkLogic Server returns a status code of 200 (OK). The response body includes a list of dynamic-host-token elements if successful. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.

Required Privileges

This operation requires the manage-admin role, or the following privileges:

Usage Notes

If the request targets a foreign cluster, an empty response body is returned with a 200 (OK) status code.

Example


    curl --anyauth --user admin:admin -i -X GET "http://localhost:8002/manage/v2/clusters/Default/dynamic-host-token?comment-match-pattern=".*comment.*""
    ==> returns a list of dynamic host tokens in cluster "Default" with "comment" in the comment section.
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.